/* global */
html {
    scroll-behavior: smooth;
}

body h1 {
    font-size: 60px;
}

body h2 {
    font-size: 40px;
}

body h3 {
    font-size: 35px;
}

body h4 {
    font-size: 30px;
}

body h5 {
    font-size: 25px;
    line-height: 1.6;
}

input::file-selector-button {
    color: white;
    border-radius: 5px;
    background-image: linear-gradient(45deg, rgb(27, 23, 210), rgb(27, 23, 100));
    border: transparent;
    padding: 5px;
}

/* scrollbar */
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #11276A #CCCCCC;
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
    width: 15px;
    width: 15px;
}

*::-webkit-scrollbar-track {
    border-radius: 20px;
    background-color: #CCCCCC;
}

*::-webkit-scrollbar-track:hover {
    background-color: #BBBBBB;
}

*::-webkit-scrollbar-track:active {
    background-color: #AAAAAA;
}

*::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background-color: #11276A;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #0E215A;
}

*::-webkit-scrollbar-thumb:active {
    background-color: #09153A;
}


/*Navbar*/
.nav-head {
    background-color: rgba(123, 123, 124, 0.8);
}

.nav-body {
    padding: 10px;
    background-color: rgb(17, 39, 106, 0.8);
}

/*Html elemenets*/
.service-link {
    text-decoration: none;
}

.service-link:link {
    text-decoration: none;
}

.service-link:visited {
    text-decoration: none;
}

.service-link:active {
    text-decoration: none;
}

hr {
    border: 0;
    height: 0;
    box-shadow: 0 0 10px 1px black;
}

hr:after {
    content: "\00a0";
    /* Prevent margin collapse */
}

/* home page */
.home-page-img {
    height: 600px;
}

/* background */
.bgimg {
    object-fit: cover;
    position: fixed;
    z-index: -1;
    opacity: 0.4;
    height: 100%;
    width: 100%;
    left: 0px;
    top: 0px;
}

/* services */
.service-row {
    border-radius: 40px;
    transition: ease-out 0.5s;
}

.service-row:hover {
    color: white;
    background-color: rgb(0, 114, 171);
    transition: ease-in 0.5s;
}

/* card */
.my-card {
    text-align: center;
    transition: ease-out 0.3s;
}

.my-card:hover {
    color: white;
    background-color: #616161;
    transition: ease-in 0.3s;
}

.card-img {
    height: fit-content;
}

/* applying for job */
.pbtn {
    color: #f8f9fa;
}

/* contact us */
.section-title {
    font-size: 70px;
    font-weight: 600;
    color: #fdfdfe;
    text-shadow: 0px 0px 5px #616161, 0px 0px 10px #616161, 0px 0px 10px #616161,
        0px 0px 20px #616161;
}

.form-ele {
    backdrop-filter: blur(2px) saturate(100%);
    -webkit-backdrop-filter: blur(2px) saturate(100%);
    background-color: rgba(140, 140, 140, 0.4);
    border-radius: 5px;
    border: 1px solid rgba(140, 140, 140, 0.125);
    color: black;
    width: 100%;
    padding: 10px;
}

.form-ele::placeholder {
    color: white;
}

.form-ele:focus::placeholder {
    color: rgba(240, 240, 240, 0.5);
}

.form-ele:focus {
    backdrop-filter: blur(2px) saturate(100%);
    -webkit-backdrop-filter: blur(2px) saturate(100%);
    background-color: rgba(140, 140, 140, 0.4);
    border-radius: 5px;
    border: 1px solid rgba(140, 140, 140, 0.125);
    color: black;
}

/* responsive */
@media screen and (max-width:700px) {
    .home-page-img {
        height: 200px;
    }

    .card-img {
        height: 200px;
    }
}